home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / extra / pro13 / close.c < prev    next >
Text File  |  1993-02-09  |  272b  |  23 lines

  1. /*
  2.     close.C
  3.  
  4.     Copyright (C) 1993, Geoff Friesen B.Sc.
  5.     All rights reserved.
  6. */
  7.  
  8. #define    INCL_CLOSE
  9.  
  10. int _close (int handle)
  11. {
  12.    asm mov ah, 3eh
  13.    asm mov bx, handle
  14.    asm int 21h
  15.  
  16.    asm mov ax, 0
  17.    asm jnc _close1
  18.  
  19.    asm mov ax, -1
  20.  
  21. _close1:
  22.  
  23. }